home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / MATH / PI / MAIN.DFM / MAIN.txt
Text File  |  1996-06-17  |  2KB  |  135 lines

  1. object PiForm: TPiForm
  2.   Left = 238
  3.   Top = 121
  4.   BorderStyle = bsSingle
  5.   Caption = 'Pi Calculator Main Form'
  6.   ClientHeight = 268
  7.   ClientWidth = 407
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 120
  14.   TextHeight = 16
  15.   object CalculatingNameLabel: TLabel
  16.     Left = 16
  17.     Top = 16
  18.     Width = 72
  19.     Height = 16
  20.     Caption = 'Calculating :'
  21.   end
  22.   object StartNameLabel: TLabel
  23.     Left = 16
  24.     Top = 48
  25.     Width = 63
  26.     Height = 16
  27.     Caption = 'Start 1/18 :'
  28.   end
  29.   object ProcessNameLabel: TLabel
  30.     Left = 16
  31.     Top = 176
  32.     Width = 75
  33.     Height = 16
  34.     Caption = 'Finish Time :'
  35.   end
  36.   object CalculatingLabel: TLabel
  37.     Left = 96
  38.     Top = 16
  39.     Width = 185
  40.     Height = 16
  41.   end
  42.   object Start18Label: TLabel
  43.     Left = 96
  44.     Top = 48
  45.     Width = 185
  46.     Height = 16
  47.   end
  48.   object FinishTimeLabel: TLabel
  49.     Left = 96
  50.     Top = 176
  51.     Width = 193
  52.     Height = 16
  53.   end
  54.   object Label1: TLabel
  55.     Left = 16
  56.     Top = 80
  57.     Width = 60
  58.     Height = 16
  59.     Caption = 'Start 1/57:'
  60.   end
  61.   object Start57Label: TLabel
  62.     Left = 96
  63.     Top = 80
  64.     Width = 185
  65.     Height = 16
  66.   end
  67.   object Label3: TLabel
  68.     Left = 16
  69.     Top = 112
  70.     Width = 67
  71.     Height = 16
  72.     Caption = 'Start 1/239:'
  73.   end
  74.   object Start239Label: TLabel
  75.     Left = 96
  76.     Top = 112
  77.     Width = 185
  78.     Height = 16
  79.   end
  80.   object Label2: TLabel
  81.     Left = 8
  82.     Top = 144
  83.     Width = 74
  84.     Height = 16
  85.     Caption = 'Summing Pi:'
  86.   end
  87.   object StartPILabel: TLabel
  88.     Left = 96
  89.     Top = 144
  90.     Width = 192
  91.     Height = 16
  92.   end
  93.   object PiProgressBar: TProgressBar
  94.     Left = 16
  95.     Top = 208
  96.     Width = 377
  97.     Height = 20
  98.     Min = 0
  99.     Max = 100
  100.     TabOrder = 0
  101.   end
  102.   object CloseBitBtn: TBitBtn
  103.     Left = 312
  104.     Top = 72
  105.     Width = 75
  106.     Height = 25
  107.     TabOrder = 1
  108.     OnClick = CloseBitBtnClick
  109.     Kind = bkClose
  110.   end
  111.   object AbortBitBtn: TBitBtn
  112.     Left = 312
  113.     Top = 40
  114.     Width = 75
  115.     Height = 25
  116.     TabOrder = 2
  117.     OnClick = AbortBitBtnClick
  118.     Kind = bkAbort
  119.   end
  120.   object OkBitBtn: TBitBtn
  121.     Left = 312
  122.     Top = 8
  123.     Width = 75
  124.     Height = 25
  125.     TabOrder = 3
  126.     OnClick = OkBitBtnClick
  127.     Kind = bkOK
  128.   end
  129.   object PiTimer: TTimer
  130.     OnTimer = PiTimerTimer
  131.     Left = 328
  132.     Top = 120
  133.   end
  134. end
  135.